Profile

Jerry Burianyk

Contact Details

My Content

1 to 20 of 50+ total
Posted By Jerry Burianyk 03-23-2026 12:44
Found In Egroup: Facility Control
\ view thread
James, Works perfectly for my needs and thanks for the lesson as well (it has me re-thinking a lot of other instances). ------------------------------ JerryB ------------------------------
Posted By Jerry Burianyk 03-22-2026 11:51
Found In Egroup: Facility Control
\ view thread
Does anyone know if the text attributes (bold/size) for dropdown lists ever been addressed as a feature/function? Thanks, ------------------------------ JerryB ------------------------------
Posted By Jerry Burianyk 03-21-2026 13:38
Found In Egroup: Facility Control
\ view thread
Hi Using the code sample here, is there a clean simple way to break the created buttons into 6 columns by 2 rows. I've tried adding the "columns:6" to the style but it just seems to ignore that formatting. I'm also want to keep the result value to a single variable ... Here is the code I'm trying: ...
Posted By Jerry Burianyk 12-10-2025 12:46
Found In Egroup: Facility Control
\ view thread
A question for the community: I have quite a few text entry fields on screen. Right now, the order that pressing the TAB key on the keyboard is "horizontal left to right". Is there a way that I can control how the user 'TABs' through the panel (ie tab to the next item of a column vertically)? TIA ...
Posted By Jerry Burianyk 12-04-2025 12:56
Found In Egroup: Facility Control
\ view thread
Just wondering if/what/how ... the best procedure from getting parameter data within the from one Tab and using the resultant variable/value in another Tab. Would giving the Tab an 'ID' be a good method to address the particular param value? Something like this: If anyone has a suggestion for ...
Posted By Jerry Burianyk 03-08-2025 12:38
Found In Egroup: Facility Control
\ view thread
Is there any way, programatically, to reset the toggle button back to it's default state WITHOUT having the associated tasks execute? Explaining this ... button21 has two states (ON with a red background & OFF with a grey background) bstate=1 ... button is ON bstate=0 ... button is OFF I've ...
Posted By Jerry Burianyk 01-10-2025 13:12
Found In Egroup: Facility Control
\ view thread
Is it possible to lock/pin a button in position if the Tab Container that the button is located in, is set for --> scroll="true"? If so - how is this achieved? TIA ------------------------------ JerryB ------------------------------
Posted By Jerry Burianyk 12-10-2024 16:39
Found In Egroup: Facility Control
\ view thread
Thanks - it looks like this will do the trick! ------------------------------ JerryB ------------------------------
Posted By Jerry Burianyk 12-07-2024 16:17
Found In Egroup: Facility Control
\ view thread
Is it possible to have a CR/LF for new rows within a column of a table where the table is being populated from a CSV file? The only multi-row things I've seen is under the Text Entry items. Thanks ------------------------------ JerryB ------------------------------
Posted By Jerry Burianyk 11-28-2024 11:22
Found In Egroup: Facility Control
\ view thread
Answering my own post .... I know the answer is going to seem very obvious to most here, but for those who not programmers and/or learning and are building panels based off the sample(s) that are kindly provided, I can't stress enough to make sure you double and triple check what you type ... especially ...
Posted By Jerry Burianyk 11-26-2024 16:51
Found In Egroup: Facility Control
\ view thread
I'll try and make this simple (maybe) How do you keep two tables (Btable & Stable) completely separate in dashboard? Each table has 3 columns (fname, lname, title) Content for each table comes from a separate CSV file (let's say ..... List1 & List2) My problem has been that when I read/load ...
Posted By Jerry Burianyk 11-25-2024 19:26
Found In Egroup: Facility Control
\ view thread
As an additional comment ... I keep getting a null response from bname26 - I have no idea why. I added a debug statement to report the bstate value of bname26 and it returns a value of "1" when toggled on ?? Also, 1 step forward 5 steps back... When I add the suggested code for updating values from ...
Posted By Jerry Burianyk 11-25-2024 10:43
Found In Egroup: Facility Control
\ view thread
Hi Richard Thanks so much, your state example works as suggested. I have run into another issue when I restore the state(s). In this dashboard, all commands are being sent to the application's web server. As such, it is really easy to bombard (hence overload) the server and have commands get ignored/lost ...
Posted By Jerry Burianyk 11-21-2024 20:41
Found In Egroup: Facility Control
\ view thread
Brilliant Richard !!! Thanks - after getting rid of all my typos, I got it to work and kind of follow what's going on. I never really looked at functions before so this was a great lesson. The only thing that puzzles me a bit is the last line - it seems counter intuitive to put the asyncPost at "the ...
Posted By Jerry Burianyk 11-20-2024 17:23
Found In Egroup: Facility Control
\ view thread
Hi Richard - thanks for the sample. I see (kind of ....) what you are doing here. I'm doing something similar but loading the csv into a 3 column table and then getting the values from the table. So let me study this for a bit before I throw in the towel. I'll upload the .grid file so you can take ...
Posted By Jerry Burianyk 11-19-2024 16:11
Found In Egroup: Facility Control
\ view thread
I'll try and describe this as best as possible: Generally, I have a Button that will load a table from a csv file (based off the example samples) .... Under the ogscript task, the csv file is processed ... the name list params are set by the ogscript.asyncPost(params.getValue("filename",0), ...
Posted By Jerry Burianyk 10-30-2024 17:47
Found In Egroup: Facility Control
\ view thread
Hi, I'm sorry if this is handled simply somewhere as a function within Dashboard but I haven't found it yet (I'd like to use something other than a text entry widget). Is it possible to capture a numeric 'digits' entry from the pc keyboard/keypad limited to any one or two digits and then store those ...
Posted By Jerry Burianyk 07-10-2023 17:01
Found In Egroup: Facility Control
\ view thread
If anyone likes this concept of writing out an xml file of a selected entry from a table, I finally got this working basing it off the sample "Write an XML File.grid". To trigger the file write, I added a new task for the Table so it would trigger on the selection. Here is the working code (not pretty ...