My Stuff
Comments
-
Hello Paur, Your code says, you are trying to set the last line color to red. Is that what you want?
-
Hello Paul, Each line comes with <tr id="item_row_1" class="uir-machine-row uir-machine-row-odd"><line_details_here></tr>. You can get line numbers checking "isclosed" is "T"/true. Please remember, for each line value to be put in the array as (value + 1). Put all closed line numbers in an array. Later using for loop on…
-
Sorry for delay in responding. Yes, instead of creating Item Fulfillment in client script, I tried calling a Suitelet to perform the same, that fixed the issue. Thank you so much for responding to my problem.
-
I have updated as per your suggestion, but still same error.
-
var objRecord = record.transform({ fromType:'salesorder', fromId: soId, toType: 'itemfulfillment', isDynamic: false, }); objRecord.setValue("custbody_eu_masterpack", arrItemInfo[0].masterpack); objRecord.setValue("status", "C"); var itemLineCount = objRecord.getLineCount("item"); log.debug("IF Line count", itemLineCount);…
-
Hi, I have fixed that issue. Thank you for all your response. Making ignoreFieldChange to false, fixed my issue. Thank you again.
-
Hello Mikko, I am using Client script fieldchange event to check this checkbox. I am not using User Event script. Here is the code to set the checkbox on field change of another column. globalCurrentObj.setCurrentSublistValue({ sublistId: sublistId, fieldId: 'custpage_updated', value: true, ignoreFieldChange: true });
-
iscommitted = context.request.getSublistValue({ group: 'custpage_sublist_'+soId, name: 'custpage_updated', line: index }); This is the code, I am using to get value of checkbox in SuiteLet script.
-
Hi Mikko, I am getting checkbox field value as "T", when I am clicking the checkbox manually. Bu when the checkbox is checked through a client script, I am getting value "F" which is not correct. As I am using a SuiteLet script, checkbox column is on a SuiteLet sublist. Its not on any standard/custom record.