Author Topic: How to disable edit_box when popup_list item is selected?  (Read 3580 times)

0 Members and 1 Guest are viewing this topic.

Brick_top

  • Guest
How to disable edit_box when popup_list item is selected?
« on: October 08, 2014, 04:38:17 AM »
Hi there I have a popup_list and an edit_box.

and I would like to disable the edit_box when a certain popup_list item is selected.

problem is I can't figure out the way to do it.

I know it is related to the (mode_tile) function

thanks

kpblc

  • Bull Frog
  • Posts: 396
Re: How to disable edit_box when popup_list item is selected?
« Reply #1 on: October 08, 2014, 04:47:30 AM »
(mode_tile <Key> 0) ;; enables <Key> control
(mode_tile <Key> 1) ;; disables <Key> control

What the question is? You can't write callback function? Please show your code and dcl
Sorry for my English.

Brick_top

  • Guest
Re: How to disable edit_box when popup_list item is selected?
« Reply #2 on: October 08, 2014, 04:58:02 AM »
I start the list in the popup list with this

Code: [Select]
(start_list "info_lst" 3)
   (mapcar 'add_list info_lst)
   (end_list)

the list might contain different number of items

 ("Nova" "Info 1" "Info 2")

I also have an edit_box with the key "inf2"

I want to have it greyed out whenever I don't have the item "Nova" in the popup_list selected.



Brick_top

  • Guest
Re: How to disable edit_box when popup_list item is selected?
« Reply #3 on: October 08, 2014, 05:01:24 AM »
I tried doing this but with no luck

Code: [Select]
(defun greyt (info_lstr)
     (if (= "0" info_lstr)
       (mode_tile "inf2" 0)
       (mode_tile "inf2" 1)
      );if
    );defun greyt

(action_tile "info_lst" "(greyt info_lstr)")

Code: [Select]



(defun greyt (info_lstr)
 (setq info_lstr (get_tile "info_lst"))
     (if (= "0" info_lstr)
       (mode_tile "inf2" 0)
       (mode_tile "inf2" 1)
      );if
    );defun greyt

(action_tile "info_lst" "(greyt info_lstr)")



I think I solved it! this line was missing -> (setq info_lstr (get_tile "info_lst"))
« Last Edit: October 08, 2014, 05:26:14 AM by Brick_top »

Kerry

  • Mesozoic relic
  • Seagull
  • Posts: 11654
  • class keyThumper<T>:ILazy<T>
Re: How to disable edit_box when popup_list item is selected?
« Reply #4 on: October 08, 2014, 06:16:09 AM »
Brick_top.

< .. > Please show your code and dcl

This sort of request is not made because we like typing  .. there is a reason for it !!

7 times out of 10 putting together and testing a succinct sample to demonstrate the problem will help resolve the issue even before you post your question..

Not doing so makes us ( well, me anyway) wonder why we should bother helping someone who won't help themselves.

succinct:
(especially of something written or spoken) briefly and clearly expressed.
Characterized by clear, precise expression in few words;
« Last Edit: October 08, 2014, 06:27:47 AM by Kerry »
kdub, kdub_nz in other timelines.
Perfection is not optional.
Everything will work just as you expect it to, unless your expectations are incorrect.
Discipline: None at all.

Brick_top

  • Guest
Re: How to disable edit_box when popup_list item is selected?
« Reply #5 on: October 08, 2014, 06:17:53 AM »
thanks kerry, I understand that.

I guess I wrongly assumed that my request was something standard so I didn't need to post my code.


Kerry

  • Mesozoic relic
  • Seagull
  • Posts: 11654
  • class keyThumper<T>:ILazy<T>
Re: How to disable edit_box when popup_list item is selected?
« Reply #6 on: October 08, 2014, 06:25:05 AM »
thanks kerry, I understand that.

I guess I wrongly assumed that my request was something standard so I didn't need to post my code.

I know what you are saying ; but you will find you'll get a better quality of response if you are seen to make the effort. AS it was 'someone' ( well, several someones) would need to build their own sample to test and prove a solution.

Regarding your solution:
I can't see how that setq will resolve your problem as originally posted ... mainly because I can't imagine what your code looked like.
Nor can anyone else who potentially finds this thread while searching for a similar issue.

Regards,

kdub, kdub_nz in other timelines.
Perfection is not optional.
Everything will work just as you expect it to, unless your expectations are incorrect.
Discipline: None at all.

roy_043

  • Water Moccasin
  • Posts: 1895
  • BricsCAD 18
Re: How to disable edit_box when popup_list item is selected?
« Reply #7 on: October 08, 2014, 06:47:51 AM »
This should accomplish the same:
Code: [Select]
(defun greyt ()
  (mode_tile "inf2" (if (= "0" (get_tile "info_lst")) 0 1))
)
(action_tile "info_lst" "(greyt)")

And this:
Code: [Select]
(defun greyt ()
  (mode_tile "inf2" (if (= "0" $value) 0 1))
)
(action_tile "info_lst" "(greyt)")

Brick_top

  • Guest
Re: How to disable edit_box when popup_list item is selected?
« Reply #8 on: October 08, 2014, 07:14:50 AM »

I know what you are saying ; but you will find you'll get a better quality of response if you are seen to make the effort. AS it was 'someone' ( well, several someones) would need to build their own sample to test and prove a solution.

thanks! fortunately that makes perfect sense, I'll keep that in mind whenever I post.

Quote
Regarding your solution:
I can't see how that setq will resolve your problem as originally posted ... mainly because I can't imagine what your code looked like.
Nor can anyone else who potentially finds this thread while searching for a similar issue.

Regards,

I tried many things from some webpages but don't remember right now as I deleted them.

I'm going to try to explain my last effort and what I think that setq line solved.

Code: [Select]
;;; this is the version of code I thought would work

;here I wanted to enable the edit_box "inf2"
;whenever the item "0" of the popup_list "info_lst" was selected

(defun greyt (info_lstr)
     (if (= "0" info_lstr) ;info_lstr was defined before in the code in this function:
                           ;   (defun ad2 ()
                           ;>>>>>>>(setq info_lstr (get_tile "info_lst")) "info_lst" is the key of the popup list
                           ;    );ad2
       (mode_tile "inf2" 0)
       (mode_tile "inf2" 1)
     );if
);defun greyt

(action_tile "info_lst" "(greyt info_lstr)")
;as I understand it the problem with this ideia was that the value of the popup list
;to be checked for disabling the edit_box was only retrieved when exiting the dialog
;in this line bellow, so the function greyt couldn't check the value.
(action_tile "accept" "(setq ddiag 2)(ad2)(done_dialog)");note the call for the (ad2) function


;that is why I added the (setq info_lstr (get_tile "info_lst")) to the greyt function
(defun greyt (info_lstr)
  (setq info_lstr (get_tile "info_lst")) ;<- <- <- <- <-
     (if (= "0" info_lstr)
       (mode_tile "inf2" 0)
       (mode_tile "inf2" 1)
      );if
  );defun greyt

;so that whenever I use the "info_lst" popup_list the function greyt is
;called to check which item is selected to disable or enable the edit_box

(action_tile "info_lst" "(greyt info_lstr)")

I hope this can help someone, I tried to be as succint as I could. At least I tried my best

Brick_top

  • Guest
Re: How to disable edit_box when popup_list item is selected?
« Reply #9 on: October 08, 2014, 07:16:22 AM »
This should accomplish the same:
Code: [Select]
(defun greyt ()
  (mode_tile "inf2" (if (= "0" (get_tile "info_lst")) 0 1))
)
(action_tile "info_lst" "(greyt)")

And this:
Code: [Select]
(defun greyt ()
  (mode_tile "inf2" (if (= "0" $value) 0 1))
)
(action_tile "info_lst" "(greyt)")

thanks roy your solution is much more elegant