Member popups
-
I'm not sure when it was changed, but now the member popups do not display member's join date, articles, or messages. I thought the purpose of including this information was to give some context, e.g., when a member asks a question, others can see if the question came from a newby, and so may give some further guidance. Without this info, the member popup is now useless as a source of any context, and we have to go to member's profile page, like we did before. Please change it back.
Best wishes, Hans
-
I'm not sure when it was changed, but now the member popups do not display member's join date, articles, or messages. I thought the purpose of including this information was to give some context, e.g., when a member asks a question, others can see if the question came from a newby, and so may give some further guidance. Without this info, the member popup is now useless as a source of any context, and we have to go to member's profile page, like we did before. Please change it back.
Best wishes, Hans
Chris, When you read Hans message, can you also clarify what platforms this is working on, or is there still issues? I have both the settings and the top of the forum check boxes ticked, and I never see the popups working, this is on Chrome. Cheers,
Dave Find Me On: Web|Facebook|Twitter|LinkedIn
Folding Stats: Team CodeProject
-
Chris, When you read Hans message, can you also clarify what platforms this is working on, or is there still issues? I have both the settings and the top of the forum check boxes ticked, and I never see the popups working, this is on Chrome. Cheers,
Dave Find Me On: Web|Facebook|Twitter|LinkedIn
Folding Stats: Team CodeProject
Dave, It wasn't working for me, either, until I clicked the Update button on the orange bar.
Best wishes, Hans
-
Dave, It wasn't working for me, either, until I clicked the Update button on the orange bar.
Best wishes, Hans
-
I tried that as well......
Dave Find Me On: Web|Facebook|Twitter|LinkedIn
Folding Stats: Team CodeProject
In that case, there's no help for it, you'll have to upgrade your bios. :laugh:
Best wishes, Hans
-
In that case, there's no help for it, you'll have to upgrade your bios. :laugh:
Best wishes, Hans
-
I even disabled all the chrome extensions incase one of them were interfering. upgrade the bios won't work, maybe a new laptop will :)
Dave Find Me On: Web|Facebook|Twitter|LinkedIn
Folding Stats: Team CodeProject
Dave (to wife): Honey, I evidently need a new laptop because the one I have doesn't allow me to use some new functionality on a web site that's important to my job." Wife: What functionality is that, dear? Dave: It allows me to place reference material into a visual context, and supplies amplifying information that would otherwise go un-referenced. Wife: English, please. Dave: I want to look at other user's profiles without having to actually click on their user ID. Wife: For instance? Dave: (selects JSOP user ID, displaying the monkey-turkey avatar in all it's glory) Like that. Wife: You're kidding, right? Dave: No, I would never have known this guy was such a god-like individual if I hadn't clicked on the link. If I had a new laptop, his diety-ness would have been obvious with a mere hover of the mouse cursor. Wife: Well, okay then. ----------------------- Dave, you can thank me with appropriate 5-voting of all of my messages for a year.
".45 ACP - because shooting twice is just silly" - JSOP, 2010
-----
You can never have too much ammo - unless you're swimming, or on fire. - JSOP, 2010
-----
"Why don't you tie a kerosene-soaked rag around your ankles so the ants won't climb up and eat your candy ass." - Dale Earnhardt, 1997 -
Dave (to wife): Honey, I evidently need a new laptop because the one I have doesn't allow me to use some new functionality on a web site that's important to my job." Wife: What functionality is that, dear? Dave: It allows me to place reference material into a visual context, and supplies amplifying information that would otherwise go un-referenced. Wife: English, please. Dave: I want to look at other user's profiles without having to actually click on their user ID. Wife: For instance? Dave: (selects JSOP user ID, displaying the monkey-turkey avatar in all it's glory) Like that. Wife: You're kidding, right? Dave: No, I would never have known this guy was such a god-like individual if I hadn't clicked on the link. If I had a new laptop, his diety-ness would have been obvious with a mere hover of the mouse cursor. Wife: Well, okay then. ----------------------- Dave, you can thank me with appropriate 5-voting of all of my messages for a year.
".45 ACP - because shooting twice is just silly" - JSOP, 2010
-----
You can never have too much ammo - unless you're swimming, or on fire. - JSOP, 2010
-----
"Why don't you tie a kerosene-soaked rag around your ankles so the ants won't climb up and eat your candy ass." - Dale Earnhardt, 1997I would if that was how things work, but i'll give you a 5 on that message for effort :); Wife: You bought a new laptop? Me: Yep. Wife: When am I getting a new one? Me: (selective hearing engaged) Thats how it went when I appeared on the Sofa the other week with a new Samsung 10.1 tablet...... :)
Dave Find Me On: Web|Facebook|Twitter|LinkedIn
Folding Stats: Team CodeProject
-
I'm not sure when it was changed, but now the member popups do not display member's join date, articles, or messages. I thought the purpose of including this information was to give some context, e.g., when a member asks a question, others can see if the question came from a newby, and so may give some further guidance. Without this info, the member popup is now useless as a source of any context, and we have to go to member's profile page, like we did before. Please change it back.
Best wishes, Hans
The member popups never displayed the member's join date, messages or articles. It's always been just the simple "What do I look like, what do I do and where do I live" popup. Here's the entity that's passed back, and has been passed back since v1:
public class MemberSummary
{
public int ID { get; set; }
public string Name { get; set; }
public string Title { get; set; }
public string Company { get; set; }
public string Country { get; set; }
public string WebsiteURL { get; set; }
public string ProfileURL { get; set; }
public string ImageURL { get; set; }
public int RepPoints { get; set; }
}cheers, Chris Maunder The Code Project | Co-founder Microsoft C++ MVP
-
Chris, When you read Hans message, can you also clarify what platforms this is working on, or is there still issues? I have both the settings and the top of the forum check boxes ticked, and I never see the popups working, this is on Chrome. Cheers,
Dave Find Me On: Web|Facebook|Twitter|LinkedIn
Folding Stats: Team CodeProject
Try changing your forum View to Normal. I'll dig in and see why it's not working when you choose "Expand Posts and Replies"
cheers, Chris Maunder The Code Project | Co-founder Microsoft C++ MVP
-
Try changing your forum View to Normal. I'll dig in and see why it's not working when you choose "Expand Posts and Replies"
cheers, Chris Maunder The Code Project | Co-founder Microsoft C++ MVP
-
The member popups never displayed the member's join date, messages or articles. It's always been just the simple "What do I look like, what do I do and where do I live" popup. Here's the entity that's passed back, and has been passed back since v1:
public class MemberSummary
{
public int ID { get; set; }
public string Name { get; set; }
public string Title { get; set; }
public string Company { get; set; }
public string Country { get; set; }
public string WebsiteURL { get; set; }
public string ProfileURL { get; set; }
public string ImageURL { get; set; }
public int RepPoints { get; set; }
}cheers, Chris Maunder The Code Project | Co-founder Microsoft C++ MVP
Wow, I guess I need to check my RAM. :-O Now that we've established that, can you please add that infos to the popup? :rose:
Best wishes, Hans
-
I would if that was how things work, but i'll give you a 5 on that message for effort :); Wife: You bought a new laptop? Me: Yep. Wife: When am I getting a new one? Me: (selective hearing engaged) Thats how it went when I appeared on the Sofa the other week with a new Samsung 10.1 tablet...... :)
Dave Find Me On: Web|Facebook|Twitter|LinkedIn
Folding Stats: Team CodeProject
Don't be surprised if next week you suddenly notice you're sitting on a new sofa.
If your actions inspire others to dream more, learn more, do more and become more, you are a leader." - John Quincy Adams
You must accept one of two basic premises: Either we are alone in the universe, or we are not alone in the universe. And either way, the implications are staggering” - Wernher von Braun -
Dave (to wife): Honey, I evidently need a new laptop because the one I have doesn't allow me to use some new functionality on a web site that's important to my job." Wife: What functionality is that, dear? Dave: It allows me to place reference material into a visual context, and supplies amplifying information that would otherwise go un-referenced. Wife: English, please. Dave: I want to look at other user's profiles without having to actually click on their user ID. Wife: For instance? Dave: (selects JSOP user ID, displaying the monkey-turkey avatar in all it's glory) Like that. Wife: You're kidding, right? Dave: No, I would never have known this guy was such a god-like individual if I hadn't clicked on the link. If I had a new laptop, his diety-ness would have been obvious with a mere hover of the mouse cursor. Wife: Well, okay then. ----------------------- Dave, you can thank me with appropriate 5-voting of all of my messages for a year.
".45 ACP - because shooting twice is just silly" - JSOP, 2010
-----
You can never have too much ammo - unless you're swimming, or on fire. - JSOP, 2010
-----
"Why don't you tie a kerosene-soaked rag around your ankles so the ants won't climb up and eat your candy ass." - Dale Earnhardt, 1997John Simmons / outlaw programmer wrote:
his diety-ness would have been obvious with a mere hover of the mouse cursor
I assume this means you're losing weight.
Forgive your enemies - it messes with their heads
My blog | My articles | MoXAML PowerToys | Mole 2010 - debugging made easier - my favourite utility