Re: DataGrid Scrolling problem

2019-10-06 Thread Andrew Bell via use-livecode
Something seems to have changed in the datagrid code, because I have an old iOS device with a version of my software from over a year ago and it scrolls fine so I feel like the issue is with my scroller and DG2 (this stack pre-dates that change). I tried Ralph's suggestion of adding 20px, b

RE: DataGrid Scrolling problem

2019-10-02 Thread Ralph DiMola via use-livecode
runrev.com Cc: and...@midwestcoastmedia.com Subject: Re: DataGrid Scrolling problem Now that you mention this, I see the same issue with 2 of my apps in the iOS store that were built using LC 9.5. There is one item just "past" the bottom of the datagrid that you can only see if you swipe be

Re: DataGrid Scrolling problem

2019-10-02 Thread Andrew Bell via use-livecode
nd to last item. Seems more like this is an issue with the scroller than the datagrid itself. --Andrew Bell Date: Wed, 2 Oct 2019 08:19:47 -0600 From: "Mike for GDC" Subject: DataGrid Scrolling problem Message-ID: <007d01d5792c$729cac90$57d605b0$@golddogcoffee.com> Hello

Re: DataGrid Scrolling problem

2019-10-02 Thread Bob Sneidar via use-livecode
When I have datagrid display weirdness I do a couple things. First, I get the dgText of the datagrid to see if there isn't unexpected data there. I will also get the dgData to see if there aren't off keys. Once I had a bug in my code that put a key of 0 with an empty value. It didn't display, bu

Re: DataGrid Scrolling problem

2019-10-02 Thread Bob Sneidar via use-livecode
Just tested here with a table style DG. Works fine LC 9.5 MacOS 10.14.6. Bob S > On Oct 2, 2019, at 07:19 , Mike for GDC via use-livecode > wrote: > > Hello, > > > > I have a problem with a datagrid. I cannot see the last couple of rows > when scrolling. For instance if you have 100 li

DataGrid Scrolling problem

2019-10-02 Thread Mike for GDC via use-livecode
Hello, I have a problem with a datagrid. I cannot see the last couple of rows when scrolling. For instance if you have 100 lines and scroll to the bottom of the grid you only get up to 98. If you "hold" the scroll by forcing the scroll to go to the bottom you can see lines 99 and 100 but be

Re: Datagrid Scrolling

2018-08-27 Thread Andrew Bell via use-livecode
ue to lack of iOS12 compatibility (smooth scrolling is important, but not at the cost of the app not even launching). --Andrew Bell From: hlowe Subject: Re: Datagrid Scrolling Message-ID: <1535212927416-0.p...@n4.nabble.com> I agree. There has been a very significant deteriora

Re: Datagrid Scrolling

2018-08-26 Thread Sannyasin Brahmanathaswami via use-livecode
nt Android app!"] I guess I have abandon DG and go for with a manually built, all-controls-on-the-same-front group, method. Unless HQ can give us a head up as to when 9.1 will be released? On 8/25/18 6:02 AM, hlowe via use-livecode wrote: > I agree. There has been a very significa

Re: Datagrid Scrolling

2018-08-25 Thread hlowe via use-livecode
I agree. There has been a very significant deterioration in datagrid scrolling performance since DG2 and LC9 were introduced. Based on feedback from user testing we have delayed release of an important iOS app update because DG scrolling was perceived to be unacceptably slow and visually jerky

Re: Datagrid Scrolling

2018-08-24 Thread Brian Milby via use-livecode
There were deeper engine changes to finish the accelerated rendering updates required to fully support DG2. I think that is scheduled for 9.1 now. Thanks, Brian On Aug 24, 2018, 11:28 PM -0500, Sannyasin Brahmanathaswami via use-livecode , wrote: > Scrolling the Datagrid on mobile is "terrible"

Datagrid Scrolling

2018-08-24 Thread Sannyasin Brahmanathaswami via use-livecode
Scrolling the Datagrid on mobile is "terrible" (jerky, pixel by pixel) I thought this was fixed in Datagrid2? Maybe that hasn't been released? BR ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscr

Re: Datagrid -- Scrolling on Mobile

2018-08-20 Thread zryip theSlug via use-livecode
Dear Swami, Mobile scrollers should be natively added by the dg2 library when the stack is executed inside a mobile device context. I've seen the corresponding portion of code inside the dg2 library. On Mon, Aug 20, 2018 at 5:09 PM, Sannyasin Brahmanathaswami via use-livecode wrote: > I am slow

Datagrid -- Scrolling on Mobile

2018-08-20 Thread Sannyasin Brahmanathaswami via use-livecode
I am slowly getting up to speed with datagrid, I understand structure, the scripts of the row group, can instantiate data etc. But, am I missing something? http://lessons.livecode.com/m/datagrid I can't find single lesson on implementing DG on mobile. Scrolling on mobile -- do we do it the sam

RE: datagrid scrolling question

2018-08-05 Thread Douglas Ruisaard via use-livecode
@lists.runrev.com; Douglas Ruisaard Subject: RE: datagrid scrolling question You can get/put data from/into the grid one row at a time without needing to figure out the group name, so you could have it update in real time in your external button. You should be able to use the same behavior script (p

Re: datagrid scrolling question

2018-08-05 Thread Douglas Ruisaard via use-livecode
Many thanks to one and all for the interesting responses ... particularly to Zryip for the extensive reply! I may be coming at LC from a somewhat unusual direction. The vast majority of my programming background was in very large, distributed servers running dedicated medical applications and

Re: datagrid scrolling question

2018-08-05 Thread zryip theSlug via use-livecode
s). Expanding the project to more modules, obviously, increase the > wait time... and I like the real-time display. > > > > However, this is as much a learning exercise as anything else... so I > still would greatly appreciate if you or anyone could suggest an > alternative methodology

RE: datagrid scrolling question

2018-08-05 Thread Brian Milby via use-livecode
rning exercise as anything else... so I still > would greatly appreciate if you or anyone could suggest an alternative > methodology for issuing any sort of message to a datagrid, if there is one. > Perhaps my method *is* the only one. THAT would be valuable information to > have, a

RE: datagrid scrolling question

2018-08-05 Thread Douglas Ruisaard via use-livecode
l. Douglas Ruisaard Trilogy Software (250) 573-3935 From: Brian Milby [mailto:br...@milby7.com] Subject: Re: datagrid scrolling question > My question is why use the button? Loop through the data in the grid and make > the tsnet call manually for each line. > If the button is calling a

Re: datagrid scrolling question

2018-08-04 Thread zryip theSlug via use-livecode
Same remark than Mike, James and Jacque. When you have to change the value of each row, populating the datagrid with a new data, seems to be the better way to go. Now for helping you with datagrids, I think you have to understand 2 importants concepts about datagrids: - rows groups are created on

Re: datagrid scrolling question

2018-08-04 Thread J. Landman Gay via use-livecode
I was thinking the same thing. I think the critical distinction is that datagrids are primarily display mechanisms, not really intended to be read directly. It's much easier to parse the original input data than to try to traverse the grid itself, which uses some tricks to appear as a continuous

Re: datagrid scrolling question

2018-08-04 Thread James At The Hale via use-livecode
I am a little lost here as to why this is a DG question as such. Certainly being able to dynamically fill data within a row is a great UI feature when the user is directly interacting with a row. But it seems you wish to completely fill particular values in all the rows from outside the DG. In th

Re: datagrid scrolling question

2018-08-04 Thread Brian Milby via use-livecode
My question is why use the button? Loop through the data in the grid and make the tsnet call manually for each line. If the button is calling a script outside of the DG, then you can use the same call. Then you don’t have to do any of those things to figure out the name of the row group. On Aug

datagrid scrolling question

2018-08-04 Thread Douglas Ruisaard via use-livecode
I sent a badly constructed message with this content (more or less) a few days ago. I am re-posting it in the hope that anyone who tried to decipher those two messages will give this another consideration. So pardon the repeat, but I'm quite sure someone from this group can lend me a hand on t

datagrid scrolling on second monitor

2017-08-08 Thread Bob Sneidar via use-livecode
Here's an odd one: Scrolling a datagrid down on an alternate monitor goes slowly with 8.1.6. Scrolling up goes even slower. Move the window to primary stack all seems normal again. Bob S ___ use-livecode mailing list use-livecode@lists.runrev.com P

Datagrid Scrolling is GLACIAL.

2016-02-23 Thread stephen barncard
Is there any trick to speed up a datagrid's scrolling? I've come back to an old project started in stable 6 and I don't remember it being so slow... MACOS Yosemite latest versions of 8 and 7 - Mac Pro 5,1 17gigs ram 350 records 13 fields. Almost useless. really slow. Is it time for the DG to be

Re: DataGrid Scrolling

2013-04-20 Thread Terence Heaford
Can anyone advise what these tricks involve. It's a plain text table from an sqlite db. Thanks Terry On 20 Apr 2013, at 10:19, stephen barncard wrote: > I am sure there are some speed up tricks for the DataGrid ___ use-livecode mailing list use-l

Re: DataGrid Scrolling

2013-04-20 Thread stephen barncard
I am sure there are some speed up tricks for the DataGrid but remember that the DataGrid is written in Livecode (just in time compiled) with multiple elements and NSTableview would be binary. Apples and Oranges. 8 column x 20 Rows shouldn't be a problem. It's possible NSTableview would use smooth

DataGrid Scrolling

2013-04-20 Thread Terence Heaford
I have a DataGrid with 8 columns and 20 rows being fed by a sqlite database. Is it possible to improve the scrolling of the DataGrid which I find stutters when compared to a native OSX NSTableView? All the best Terry ___ use-livecode mailing list use

Linux - Datagrid scrolling stops; column label missing

2012-04-12 Thread Glen Bojsza
Hello, I have an app that was built on OS X Livecdoe 4.6.4. When standalones were generated we found that the Linux (CentOS 6.2) version had some strange problems: 1. the vertical scroll for a datagrid sometimes fails. there are several rows by when the user drags the vertical scroll bar the dat