You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@spekary! I have some questions. I would like to hear your suggestions and tips. Your bootstrap_plugin is very good. I admit that I have to learn alot. I know more about how to use older versions of QCubed. I have to learn to use it a new way.
My client didn’t liked standard (small and blue) radio and checkbox. I was searching most friendly options from Google for Bootstrap and found a link: http://flatlogic.github.io/awesome-bootstrap-checkbox/demo/. I changed it, below you will see my template:
Bootstrap’s standard HTML output (radio or checkbox):
Default $blnExchange (or $blnReversed or etc) = false;
If, for example, to turn on $this->lstCheckbox (or lstRadio)->Excange = true;
Then tags exchange their places (<div><label><input> ... </label></div> to <div><input><label> ... </label></div>).
Secondly - definitely need to add other classes (if necessary) <div class = "checkbox (or radio)" for example "checkbox-orange, checkbox-inline, radio-orange, radio-inline etc". A solution might be that it is necessary to add a function. After you can simply add $this->lstCheckbox (or lstRadio)->DivCssClass = "checkbox-orange checkbox-inline etc";
They make the work much easier for webmasters. Also, it gives a lot of flexibility for Bootstrap’s other (clients) themes.
@spekary, here are two possibilities: either to add these additional options in “bootstrap_plugin” or you have to write special solutions in the folder "app_includes"?
What are your thoughts, suggestions or tips?
The text was updated successfully, but these errors were encountered:
@spekary! I have some questions. I would like to hear your suggestions and tips. Your bootstrap_plugin is very good. I admit that I have to learn alot. I know more about how to use older versions of QCubed. I have to learn to use it a new way.
My client didn’t liked standard (small and blue) radio and checkbox. I was searching most friendly options from Google for Bootstrap and found a link: http://flatlogic.github.io/awesome-bootstrap-checkbox/demo/. I changed it, below you will see my template:
Bootstrap’s standard HTML output (radio or checkbox):
But I need to change it (individual solution???)
I have some thoughts. These are my suggestions…
Default
$blnExchange (or $blnReversed or etc) = false;
If, for example, to turn on
$this->lstCheckbox (or lstRadio)->Excange = true;
Then tags exchange their places (
<div><label><input> ... </label></div>
to<div><input><label> ... </label></div>
).Secondly - definitely need to add other classes (if necessary)
<div class = "checkbox (or radio)
" for example "checkbox-orange, checkbox-inline, radio-orange, radio-inline etc
". A solution might be that it is necessary to add a function. After you can simply add$this->lstCheckbox (or lstRadio)->DivCssClass = "checkbox-orange checkbox-inline etc";
They make the work much easier for webmasters. Also, it gives a lot of flexibility for Bootstrap’s other (clients) themes.
@spekary, here are two possibilities: either to add these additional options in “bootstrap_plugin” or you have to write special solutions in the folder "app_includes"?
What are your thoughts, suggestions or tips?
The text was updated successfully, but these errors were encountered: