jQWidgets Forums
Forum Replies Created
-
Author
-
July 31, 2015 at 1:26 am in reply to: Protect certain cells from being overwritten when pasting Protect certain cells from being overwritten when pasting #74341
Hi –
3 quick followup questions:
1. Am I correct there is NOT a way I can reject the cell’s change via another event like cellChanged… correct?
2. Is there a way I can translate the screen rowed passed to the actual rowid to the source array (assume the user sorted the list or used filters)
3. Is their anything I can do if I capture Ctrl + V (or any other event) and somehow iterate through the list of source (copy) rows and manually update the destination rows myself?
July 30, 2015 at 5:14 am in reply to: How to use Delete key to remove a row?? How to use Delete key to remove a row?? #74294I count figure out how to delete this question so I will just answer myself. It can be captured in the handle keyboard navigation event
July 23, 2015 at 1:47 am in reply to: Expanding grid's text input field while editing Expanding grid's text input field while editing #74074Thanks for your input. The problem with that is that it eliminates all inline editing when all the user wants to to is change one field. Its a bit much to make them view all 20 fields… even if I preselect the one they want to change….
July 22, 2015 at 2:01 am in reply to: Automatic new row and pasting new rows into JQXGrid Automatic new row and pasting new rows into JQXGrid #74030Thank you.
July 20, 2015 at 3:43 pm in reply to: Automatic new row and pasting new rows into JQXGrid Automatic new row and pasting new rows into JQXGrid #73963Ok. Thanks. Is there a way I can get a before paste event and change the destination rows myself?
July 17, 2015 at 11:08 pm in reply to: Columns not taking full width and scrollbar missing Columns not taking full width and scrollbar missing #73907Ok… found the bug. The first time the grid is shown – the columns are not autosized correctly as described in my last post. If I click the pager – or scroll past the first page then the columns automatically resize correctly.
I have the following
ready: function()
{
$(“#myGrid”).jqxGrid(‘autoresizecolumns’);
}But that doesn’t fix it.
July 17, 2015 at 10:28 pm in reply to: Columns not taking full width and scrollbar missing Columns not taking full width and scrollbar missing #73906Ditmar,
As a matter of fact, I just stepped through the logic of $(“#jqxgrid”).jqxGrid(‘autoresizecolumns’)
And what I see is the code just makes the column as wide as the widest item in the column its searching. So that if all the columns together added up to 500 wide – but the grid was sized to 800, there will be a blank space between the last column and end of the grid thats 300 wide. I am looking for the grid to “stretch” itself to the width of the whole column.
July 17, 2015 at 7:01 pm in reply to: Columns not taking full width and scrollbar missing Columns not taking full width and scrollbar missing #73895Thanks Ditmar.
1. Per my message – I did try autoresizecolumn per the demos and it didn’t work. That was my point.
I’ve been following your autoresizecolumns examples and some of the others like fluid
2. I am loading JQButtons. Here is the debug screen from Visual Studio listing what has been loaded
“https://www.dropbox.com/s/9n5q530cwa9l41f/LoadedJS%20files.png?dl=0″ title=”https://www.dropbox.com/s/9n5q530cwa9l41f/LoadedJS%20files.png?dl=0”
-
AuthorPosts