jQWidgets Forums
Forum Replies Created
-
Author
-
March 20, 2019 at 9:50 pm in reply to: jqxMaskedInput within EverPresentRow, Need Placeholder jqxMaskedInput within EverPresentRow, Need Placeholder #104437
What I have in mind is how one would suspect it should work. The place holder is displayed by default, then when the user clicks on the everpresentrow cell the input mask is displayed. Can you show me how to do this?
March 19, 2019 at 8:28 pm in reply to: grid and createEverPresentRowWidget grid and createEverPresentRowWidget #104410This forum isn’t very helpful
February 20, 2019 at 5:01 pm in reply to: Disable editing a single cell in rowedit mode Disable editing a single cell in rowedit mode #104088Your demo link no longer works. Can you please fix this. Thanks.
February 18, 2019 at 5:52 pm in reply to: How to detect event when click item in cell How to detect event when click item in cell #104039The link that contains the example no longer works. Can you please fix it as I think this example will help me.
February 18, 2019 at 2:15 am in reply to: Possible to have 2 widgets in an ever present row? Possible to have 2 widgets in an ever present row? #104007Yes, that was the goal but I’m running out of time. I’ve changed my scope to when a user single clicks in a specific cell a jqxWindow will pop up and allow for long text to be entered. I have this working for regular cells but I can’t get it to work for ever present row. Can you please show me how to capture event of clicking in ever present row cell. I want to open jqxWindow when clicking in the cell of an ever present row. Please show me how to do this.
February 13, 2019 at 9:55 pm in reply to: jqxGrid: Needing a button in createEverPresentRowWidget jqxGrid: Needing a button in createEverPresentRowWidget #103959Solved this by putting the following into the createEverPresentRowWidget block:
var buttonTag = $(“<input type=’button’ value=’Add’ style=’margin: 2px; id=’jqxButton’></input>”).appendTo(htmlElement);
buttonTag.jqxButton({ width: 70, height: 25 }).on(‘click’, function () { //Add button props (EverPresentRow)
var offset = $(“#jqxGridMisc1099”).offset();
$(“#popupWindow”).jqxWindow({ position: { x: parseInt(offset.left) + 60, y: parseInt(offset.top) + 60 } });
// get the clicked row’s data and initialize the input fields.
var dataRecord = $(“.ToCopyTo”);
$(“#Conclusion”).val(dataRecord.val());
// show the popup window.
$(“#popupWindow”).jqxWindow(‘open’); -
AuthorPosts