Inline Fields without label
Posted: 2020-04-17 04:55
Jan,
Unless I am missing something I guess this is a feature request for a future release. Would like to create a few rows as Inline fields but do not need/want the label to the left. This is the code I am using to generate the rows:
My thought is to eventually hide the div rows onload and show them onclick with an "add item" button. I notice the div's are created with a generic class and no id though, but I should be able to access them using jQuery. Would be even cooler if AG Helper assigned some type of id (maybe the var used to create the row) to the generated html for the rows though. 
Thanks!
Brandon
Unless I am missing something I guess this is a feature request for a future release. Would like to create a few rows as Inline fields but do not need/want the label to the left. This is the code I am using to generate the rows:
Code: Select all
var addon1 = new AppGiniFields(["item_2", "item_2_quantity", "item_2_price", "item_2_extended"]).inline("",[6,2,2,2]);
var addon2 = new AppGiniFields(["item_3", "item_3_quantity", "item_3_price", "item_3_extended"]).inline("",[6,2,2,2]);
var addon3 = new AppGiniFields(["item_4", "item_4_quantity", "item_4_price", "item_4_extended"]).inline("",[6,2,2,2]);

Thanks!
Brandon