Search found 237 matches

by karahan
20 Feb 2023, 11:32
Forum: Discussion
Topic: Access groups scrolling problem
Replies: 5
Views: 244

Re: Access groups scrolling problem

I would appreciate any tip on this issue.
Tried different codes in css section but did not get it to work.
It is a minor issue but right now is very annoying.
Thanks a lot...
by karahan
08 Feb 2023, 13:08
Forum: Discussion
Topic: Access groups scrolling problem
Replies: 5
Views: 244

Re: Access groups scrolling problem

I believe this is very simple to do in css, however I was not able to figure it out.
The parameter I probably need is "overflow-y: auto", but I obviously am missing something....
by karahan
08 Feb 2023, 11:38
Forum: Discussion
Topic: Access groups scrolling problem
Replies: 5
Views: 244

Re: Access groups scrolling problem

Thank you.
Can you point me where to look in the source?
by karahan
07 Feb 2023, 11:00
Forum: Discussion
Topic: Access groups scrolling problem
Replies: 5
Views: 244

Access groups scrolling problem

Dear Sergey, as mentioned, I use RUKO as multicompany platform. Recently the number of companies exceeded 20 and I think there is problem. I configured one user as "admin" with rights to access all groups (each group represents a "company"). But when clicked on "change acces...
by karahan
03 Feb 2023, 14:31
Forum: Discussion
Topic: Help with auto focus
Replies: 5
Views: 371

Re: Help with auto focus

Hi,
you are right - code works perfectly!
What I was missing, I needed complete code - one for focus, the other for opening dropdown.
But I copied only one and for that reason it did not work.

Thanks a lot, appreciate it.
by karahan
03 Feb 2023, 14:13
Forum: Discussion
Topic: Help with auto focus
Replies: 5
Views: 371

Re: Help with auto focus

Hi enishemed,

I want to set focus (and "click") on ajax-entity field, tried your code but it does not work...
What I am doing wrong...can you help me?
setFocus_formOpening.png
by karahan
26 Jan 2023, 16:48
Forum: Discussion
Topic: Display user group information
Replies: 2
Views: 130

Re: Display user group information

Yes, thank you very much.
I missed that part. Everything is ok now.
by karahan
26 Jan 2023, 16:18
Forum: Discussion
Topic: Display user group information
Replies: 2
Views: 130

Display user group information

Dear Sergey, collegues, I am probably missing something. I use RUKO as multicompany platform. Just added a new user group and assigned user to it. When I login, there is missing information on "company". I have only name/surename of currenly logged user: userinfo.png When I log as differen...
by karahan
10 Jan 2023, 16:54
Forum: Discussion
Topic: Running Balance
Replies: 7
Views: 484

Re: Running Balance

Hi, Try this: edit: $info_query = db_query("select id, field_4541,field_4542, @total := @total - field_4542 + field_4541 as cumulative_qty from app_entity_168, (Select @total := 0) as total where app_entity_168.id = id order by id "); while($info = db_fetch_array($info_query)) { db_query(&...
by karahan
03 Jan 2023, 17:31
Forum: Discussion
Topic: Running Balance
Replies: 7
Views: 484

Re: Running Balance

I believe you have a mistake in your sql query. You are missing the "where" clause. Also, I think there is no "field_date_added" but "date_added". You can try this to see if it works: $info_query = db_query(" select field_4541, field_4542, @total := @total + field_...