0
votes
2answers
15 views
WPF Trigger binding to MVVM property
I have a datatemplate containing an image that I want to be hidden if the the value of a property in a ViewModel is true. Can anyone tell me why the the xaml below does not work?
…
0
votes
1answer
24 views
SQL Server: Self-reference FK, trigger instead of ON DELETE CASCADE
Hello,
I need to perform an ON DELETE CASCADE on my table named CATEGORY, which has the following columls
CAT_ID (BIGINT)
NAME (VARCHAR)
PARENT_CAT_ID (BIGINT)
PARENT_CAT_ID is a …
1
vote
1answer
42 views
SQL Trigger 1 row at a time
I'm creating an update trigger that goes like this (SQL Server 2005):
Is the state column of the row is 23 or 25 don't update it. Else update it. It's very simple. I'm trying
Old …
1
vote
2answers
47 views
Wpf ListBox Trigger not working for IsFocused Property.
I want to style my ListBox and displaying some Border around it, i want to hide this Border when ListBox gets focus,
<Trigger Property="IsFocused" Value="True">
<Setter …
1
vote
4answers
42 views
SQL Server Trigger switching Insert,Delete,Update
Hello is possible to switch between DML commands/operations (Insert,Delete,Update) on Trigger Body?, I try to snippet some T-SQL for understand me better :
CREATE TRIGGER DML_ON_ …
0
votes
3answers
33 views
SQL Server: pause a trigger
I am working with SQL Server 2005 and I have trigger on a table that will copy an deletions into another table. I cannot remove this trigger completely. My problem is that we have …
0
votes
1answer
17 views
Trigger thickbox from flash
hello guys!
i wonder if somebody knows how to trigger thickbox from onRelease() event in flash.
is that possible?
0
votes
1answer
25 views
MySQL BEFORE INSERT Trigger Select Into Multiple Variables?
I'm trying to write a trigger in MySQL and I need to set the values of several variables. The values I need to put into these variables are from a row in an existing table (not wo …
0
votes
1answer
31 views
SQL Server CLR Trigger with SMO or Linq?
Hello,
I've been looking at the possibility of creating a CLR trigger for insert, but every tutorial found gives me examples of using ado.net objects to do the logic - this is not …
1
vote
3answers
55 views
problem with mutating tables
I want to create trigger which will be fired after insert into some table, let`s say user.
In this trigger I want to select some records from table user, besides this one I insert …
0
votes
0answers
21 views
Getting table name in a trigger in MySQL
Hi guys, is it possible to get table name in a MySQL trigger ? i use trigger to log insert actions on some tables in MySQl and i need the name of the table where the trigger is pla …
0
votes
1answer
33 views
wpf trigger to change parent property
i want to override element triggers so when clicking on a textbox to change property of the parent border. however i get that the parent targetname is not recognized. please help.
…
0
votes
4answers
65 views
Help with insert trigger
hey
i have a temp table (question_desc, ans1, ans2, ans3, ans4, correct_ans, marks) with say 10 entries
from this table i have to insert values in two other tables
questions (q_ …
0
votes
3answers
41 views
sql server execute as permission errors in trigger
I have a trigger where I want to send out an email on updates to a row in a table SalesClosing. Now the user (dbuser) who execute the trigger has very limited permissions. So I wan …
0
votes
1answer
86 views
Jquery mouseover/mouseout triggering inconsistently
I have two sortable lists, one being nested, with a mouse over effect on the li elements of the nested sortable list. My problem is that the mouseover and mouseout functions are b …
