Jump to content

iceangel89

New Members
  • Posts

    8
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

iceangel89's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. ok so i think i want to learn zend framework where do i start? any video tutorials to begin with? i feel that books are abit boring...
  2. thanks all, wow so many solutions in so little time nice i'll try it when i get home Thanks
  3. i feel that it looks nice and its user friendly actually, for eg for showing more data or some tool tips/descriptions that would otherwise spoil the look of the site as its too long to display. but judging on the JS needed, dont quite get how i can use it, maybe i'll try something else... u know how the JS can be used?
  4. how can i do something like a HTML title attribute popup like in the attached image, with HTML formatting like bolding etc. when i view the source of the page, <a href="WorkOrder.do?woMode=viewWO&woID=3447&" id="tooltip" title="<b>Request ID :</b> 3447 <br><b>Category :</b> - <br><b>Subject :</b> test <br><b>Description :</b> test <br>"> test </a> but when i try putting <b> in my own page, it outputs them "<b> etc... with the HTML tags seen how did the site do it? http://demo.servicedeskplus.com/WOListView.do [attachment deleted by admin]
  5. how can i implement something like in gmail where i can select multiple records and delete them for example? or update all with a specific field value eg. update all selected records' "STATUS" to "Closed" [attachment deleted by admin]
  6. how can build up something like a site map where 1 site map node can have many child site map nodes and these child can have more children, etc? not actually doing a site map but its similar to it. any suggestions? i am thinking, i need something that i can "add children" so i thought of XML. what do you think? and how should i go about doing this? Edit: forgot to say, my DB is something like - ItemID - ParentID (Referencing ItemID) - Recursive relationship - Item stuff... title etc
  7. a long post but hope someone can help i need to do a system as follows as for database design, i was thinking: Users table - UserID - Username - Password ... "ClaimSequence" < (dunno what to name it) table - ID - UserID - UserID of the employee who submitted the claim - Number - Sequence number of the manager - ManagerID - UserID of Manager in charge - NextManager - UserID of the next manager in charge abit abstract so i will give an example: say managers man1, man2 needs to approve my claim the admin when registering me will set that ClaimSequence 1: - UserID - ME - Number - 1 - indicating the 1st manager - ManagerID - UserID of "man1" - NextManager - UserID of "man2" ClaimSequence 2: - UserID - ME - Number - 2 - indicating the 2nd manager - ManagerID - UserID of "man2" - NextManager - NULL - indicating no more managers, or maybe the finance ppl in charge, i'll probably ask if the finance is fixed people doing it for all employees anot... what do u think of this? then for the 2nd part to have "Management/Finance" being able to see and approve/process claims of subordinates/colleagues they are in charge of. maybe i dont need this? cos i just do like a if UserID IN ClaimSequence.ManagerID then able to see the page something like that OR i can do a Roles table and put people with management/finance roles and able to see respective pages? which is better? what kind of Accerss control is best? i normally use restrict access to page server behaviour but think ts not really efficient. is there somtthing like web.config like in ASP that i can restrict access by folder?
  8. i created a stored procedure CREATE PROCEDURE GET_USER_ACL_BY_USERNAME (IN USR VARCHAR(255)) BEGIN SELECT ACL.Action, ACL.Path FROM ACL WHERE ACL.UserGroup IN ( SELECT Usergroup.GroupID FROM Users, UserGroup, Privilages WHERE Users.UserID = Privilages.UserID AND Usergroup.GroupID = Privilages.GroupID AND Users.UserName = USR ); END| then when i CALL it, CALL GET_USER_ACL_BY_USERNAME ('emp1') it says whats wrong? how can i fix this? i just started stored procedures... and recommendations for Stored procedures resources at the same time?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.