How we can use two SASS files in a extension

While creating a Extension in SuiteCommerce Advanced we get a default Sass file. But while doing development so much style needed and in one file it’s difficult to find the classes and IDs there. In this case we can create new SASS file and and we’ve to just import that SASS file into main entry… Continue reading How we can use two SASS files in a extension

How to Add a New div Between Two Elements in an HTML Template Using JQurey

Adding a new element between two already existing elements in a template file using Javascript and JQuery. This method can be used for editing templates without directly editing theme in SCA websites. This method can be used in extensions. HTML code: Javascript + jQuery: Output: Elem 1 New Elem Elem 2

Adding Validation Message to Canvas Input Fields (Issues in iOS Devices)

While adding a validation message to a canvas Input field in html forms for adding Signature, consider the below points. When we convert the value of blank canvas to a string value for the comparison between empty and non-empty canvas fields, the value for blank canvas will be different for iOS devices including iPhone, iPad,… Continue reading Adding Validation Message to Canvas Input Fields (Issues in iOS Devices)