sorting datagrids

2022-06-30 Thread Hershel F via use-livecode
Hi all, is there any way of sorting a data grid horizontally? thanks a mill. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/ma

Re: sorting datagrids

2022-07-01 Thread Hershel F via use-livecode
this is more what i’m concerned. i’ll give it a shot and let you know. thanks. > On Jun 30, 2022, at 7:26 PM, Bob Sneidar via use-livecode > wrote: > > > put the dgText of group "myDataGrid" into tText > set the itemDelimiter to tab > > repeat with i = 1 to the number of lines of tText > p

greying out columns in a dataGrid

2023-11-30 Thread Hershel F via use-livecode
Hi all how is it done to grey out a column or multiple columns in data grid according a calculation? thanks, Hershel ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscriptio

Re: greying out columns in a dataGrid

2023-11-30 Thread Hershel F via use-livecode
columns in a Datagrid, but make them > invisible (hide or show the column) if they are not applicable to some view > you want. > > On 11/30/2023 4:04 PM, Hershel F via use-livecode wrote: >> Hi all how is it done to grey out a column or multiple columns in data grid >> ac

Re: greying out columns in a dataGrid

2023-12-04 Thread Hershel F via use-livecode
Good, getting there. thanks. just need that the row dividers should be a different color then the cells. Hershel > On Dec 1, 2023, at 9:10 AM, Klaus major-k via use-livecode > wrote: > > Hi Craig, > > always watch out for LINEBREAKS like here! > >> Am 01.12.2023 um 15:04 schrieb Craig Newm

editing data grid column via scrip

2019-02-05 Thread Hershel F via use-livecode
Hi everyone, i searched high and low for this without success. Question, i have a data grid (trying to to set up an invoice form), columns, costumer_id, product_id, company_name, product_name, price. etc. option menus in product name and company name, Now when i use the options to select a product

Re: editing data grid column via scrip

2019-02-06 Thread Hershel F via use-livecode
Hi and thanks, i’ll try to be a clearer. all editing is done only via option menu scripts. as mentioned earlier, an option menu in the company column and product column. now a mouseDown in the OM collects all company names then on menuPick the selected company is chosen at the same time the com

Re: editing data grid column via scrip

2019-02-06 Thread Hershel F via use-livecode
tHilitedIndex] of group "myDataGrid" to aGridRecord > end closeField > > This then allows you to do some error checking and validation in the > closeField handler. Use exitField instead to process your data each time the > field loses focus. > > Bob S > >> O

sending email and file with mail client

2019-02-18 Thread Hershel F via use-livecode
Hi every one, wondering how i can send an email with an attachment (invoice) direct from my app with user’s email client (mail)? using the revMail only give the possibility for contents of fields, any work arounds or printing into a fld then putting the fld into the email? Thanks in advanced. He