![]() |
Sergey Kornilov admin 10/6/2010 |
GroupID field should be added to the login table. You already done that. |
K
|
karmacomposer author 10/6/2010 |
OK, perhaps I see where the problem lies then. Right now, the GroupID is a Varchar due to the drop down or radio choices. Since that is not a integer, that is why it is not showing up to be chosen in the security area. |
![]() |
Sergey Kornilov admin 10/7/2010 |
I'm not sure why you have to create an extra entity here. It's easier to manage and understand text values like 'Recruiters' than numbers like 1,2 and 3. I would suggest to drop GroupIDNum field and work with textual representation only. |
K
|
karmacomposer author 10/7/2010 |
I'm not sure why you have to create an extra entity here. It's easier to manage and understand text values like 'Recruiters' than numbers like 1,2 and 3. I would suggest to drop GroupIDNum field and work with textual representation only. If you still want to do it this way create a new lookup table with IDs and Names of security groups and make your radio-button database-based choosing ID as a link field and Name as a display field.
|
K
|
karmacomposer author 10/8/2010 |
Wait, are you meaning that I need to set the type of Security to STATIC PERMISSIONS and then define the users and groups and then choose the GroupID field from the UserValidation form as the source for the GroupID in PHPRunner's security section? |
![]() |
Sergey Kornilov admin 10/8/2010 |
You need to setup static user group permissions choosing GroupID as a group field. There will be for user groups and each group will have access to one table only i.e. 'Recruiters' group will have access to 'Recruiters' table etc. |
K
|
karmacomposer author 10/8/2010 |
You need to setup static user group permissions choosing GroupID as a group field. There will be for user groups and each group will have access to one table only i.e. 'Recruiters' group will have access to 'Recruiters' table etc.
|