So, in a previous post (asking to turn off the save button on a form conditionally, I got the following from support:
$("#" + parser.m_widgetInfo.wrapperId).find (".aw-form-buttons .k-primary.k-button").css ("display", "none");
I have finally read the Programmers Reference (skimmed it earlier, since it seemed like it was focused on Java programming, but near the end, it talks about Javascript programming). I don't expect aware to educate me on JQuery since there are a zillion websites online that can do that...
HOWEVER in the code above:
1). m_widgetInfo.wrapperId. I don't see where I could have found that info in the programmers reference.
2). find (".aw-form-buttons .k-primary.k-button") I finally figured out these selectors will return button(s) in the DEFAULT section (vs. toolbar, etc.) of the form. and I assume that the .k-primary is finding the default section. Yes, I can inspect my code and discover all of the selectors, but perhaps our favorite toolmaker could provide a list of these and what they point to?
Now, if this IS somewhere in the documentation or included in the .JS files then, please (pretty please) can you point me to those?
Thanks
Bruce