not aligning correctly (space between label and input field, only in ie )

2008-09-08 Thread Eclectic User
..formfield { color: #00; background: #ff; border: 1px solid #3399CC; margin: 0px 0px 0px 0px ; font-size: 12px; font-family: Arial, Helvetica, "sans serif"; //float: left; //float: right; height: 21px; //width:

Passing variables from controller

2008-08-13 Thread Eclectic User
I have to pass a variable whose value I set inside cfscript block in controller method. Then I call one of the methods with the help of object which updates the records but to update the records, I need the variable stored in the controller cfscript block. Please help me how can I do that.

Passing variables from controller method to model method

2008-08-13 Thread Eclectic User
I have to pass a variable whose value I set inside cfscript block in controller method. Then I call one of the methods with the help of object which updates the records but to update the records, I need the variable stored in the controller cfscript block. Please help me how can I do that.

cfldap error

2008-08-11 Thread Eclectic User
When I run this coldfusion code to delete LDAP user, I get LDAP Error 34. I am not sure what is wrong with the DN, please help me. Thanks for any help you provide. ~| Adobe® ColdFusion® 8 software 8 is the most important

Re: select problem

2008-08-11 Thread Eclectic User
Hi Dave! Thanks for responding. There is no NULL value in the country table and in the source code, United States is 'selected' but its not selected on the page. I am not getting why its happening. Please guide me if you know the reason. >Have you looked at your 'view source' code to see if '

select problem

2008-08-11 Thread Eclectic User
Country selectedselected>#getCountries.cty_name# and I am using this query SELECT cty_iso2, cty_name FROMref_countries ORDER BY cty_name but unfortunately, the correct country is not getting selected. If a country value is ther

select input value selection problem

2008-08-11 Thread Eclectic User
Country selectedselected>#getCountries.cty_name# and I am using this query SELECT cty_iso2, cty_name FROMref_countries ORDER BYcty_name but unfortunately, the correct country is not getting selected. If a country va

select input value selection problem

2008-08-11 Thread Eclectic User
Country selectedselected>#getCountries.cty_name# and I am using this query SELECT cty_iso2, cty_name FROMref_countries ORDER BYcty_name but unfortunately, the correct country is not getting selected. If a country va

Re: how to access the query

2008-08-04 Thread Eclectic User
Thanks a lot for your help. >You are using getUsers for your query results. In order to use it in your >view, you need to add it to the event structure (which corresponds to the >attributes structure in the display) > >Instead of > > > >Do > > > > >Then in your display. Reference it with attribu

Re: how to access the query

2008-08-04 Thread Eclectic User
thanks a lot for your help. >You are using getUsers for your query results. In order to use it in your >view, you need to add it to the event structure (which corresponds to the >attributes structure in the display) > >Instead of > > > >Do > > > > >Then in your display. Reference it with attribu

Re: how to access the query

2008-08-04 Thread Eclectic User
I am trying to cfdump the values on a page that's supposed to display the users in the system and that file is dspUsres.cfm inside users/view/display but it says qryUsers is not available. Thanks for any help you provide in advance. >Eclectic, > >You might get a better response posting this to a

how to access the query

2008-08-04 Thread Eclectic User
I am new to cfc's and I am having trouble in accessing query results in fusebox 5.5. I have app.cfc in users/controller and the code in it is following: and I have usermanager.cfc in the users/model :